사이트 내 전체검색
페이지 로딩 메시지 표시
로빈아빠
https://cmd.kr/javascript/621 URL이 복사되었습니다.

본문

페이지 로딩 메시지 표시


html이 익스플러에 완전히 로딩 되기까지 보여줄 메시지를 표시 합니다.
<div ID='lodingMsgDiv' style='position:absolute; overflow:hidden; border:0px; z-index:1;height=100%'>
<table width='100%' height='80%' border='0' cellpadding='0' cellspacing='0'>
	<tr>
		<td align='center'><img src="로딩 이미지"></td>
	</tr>
</table>
</div>
<SCRIPT LANGUAGE='JavaScript'>
document.onreadystatechange = fnStartInit;
function fnStartInit() {
	if (document.readyState=='complete') {
		if (document.all['lodingMsgDiv']) { 
			document.all['lodingMsgDiv'].style.visibility = 'hidden'; 
		} 
	}
}
</SCRIPT>

댓글목록

등록된 댓글이 없습니다.

831 (3/17P)

Search

Copyright © Cmd 명령어 3.147.79.20